  /* Brochure Section*/
  .product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-width: 200px;
    max-width: 200px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.product-card .product-info {
    padding: 15px;
}

.product-card .product-name {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.product-card .view-brochure {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #002f6c;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}
.view-brochure:hover {
    background-color: #001f4a;
}